body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background-image: url("../IMG/HEY BABE IM QISTINA.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed; /* Keep background static */
}

/* === NAVIGATION BAR === */
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50x 60px;
  background-color: #f9dede;
}

header nav .logo img {
  height: 60px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

header nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

header nav a.active {
  background-color: #f5eee1;
  border-radius: 20px;
  padding: 4px 10px;
}

header nav a:hover {
  color: #ff69b4;
}

/* === ABOUT TYPEWRITER TEXT === */
.about-text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85vh;
  padding-top:140px;
}

.typewriter {
  width: 800px;
  max-width: 90%;
  font-size: 16.5px;
  line-height: 2;
  color: #111;
  white-space: pre-wrap;
  text-align: center;
  animation: fadeIn 1s ease;
}

/* Glow effect briefly */
.typewriter.glow {
  text-shadow: 0 0 8px rgba(255, 182, 193, 0.9);
}

/* Fade in text */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
